@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/challenge/> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix uom: <http://www.ontology-of-units-of-measure.org/resource/om-2/> .
@prefix iopp: <https://w3id.org/iadopt/pattern/> .
@prefix patt: <http://example.org/iadopt/pattern> .

ex:C10
    a 
        iop:Variable ;
    rdfs:label 
        "Peak ground acceleration" ;
    rdfs:comment 
        """Peak acceleration measured on the earth surface when facing seismic events, like earthquakes.""" ;
    ex:issue "https://github.com/mabablue/I-ADOPT-examples-playground/issues/16" ;
    iop:hasObjectOfInterest 
        <https://www.wikidata.org/entity/Q36133> ;
    iop:hasMatrix 
        <https://www.wikidata.org/entity/Q2> ;
    iop:hasStatisticalModifier 
        <https://www.wikidata.org/entity/Q10578722> ;
    iop:hasProperty 
        <https://qudt.org/vocab/quantitykind/Acceleration> ;
    iop:hasConstraint 
        [ a iop:Constraint ;
             rdfs:label "part: surface" ;
             iop:constrains <https://www.wikidata.org/entity/Q36133> ;
        ] ,
        [ a iop:Constraint ;
             rdfs:label "event: seismic event" ;
             iop:constrains <https://qudt.org/vocab/quantitykind/Acceleration> ;
        ] .

<https://www.wikidata.org/entity/Q36133>
    a 
        iop:Entity ;
    rdfs:label 
        "ground" .

<https://www.wikidata.org/entity/Q2>
    a 
        iop:Entity ;
    rdfs:label 
        "earth" .

<https://www.wikidata.org/entity/Q10578722>
    a 
        iop:StatisticalModifier ;
    rdfs:label 
        "maximum" .

<https://qudt.org/vocab/quantitykind/Acceleration>
    a 
        iop:Property ;
    rdfs:label 
        "acceleration" .
